home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / bbs_util / aadd120b.zip / AUTOADD.DOC next >
Text File  |  1996-04-14  |  28KB  |  663 lines

  1.  
  2.  
  3.                              AutoAdd V1.20
  4.                 Copyright (C) 1995, 1996 David Blagburn
  5.                           All rights reserved
  6.  
  7.     What is AutoAdd?  Well, AutoAdd is a bridge between Allfix and
  8.   PCBoard.  Allfix allows automatic additions of new file areas but has
  9.   no way to let your BBS software (and consequently, your users) about
  10.   the new file area.  This is where AutoAdd comes in.  AutoAdd will:
  11.  
  12.      * Detect auto-added file echos.
  13.      * Add the new file areas to the BBS.
  14.      * Copy the FILES.BBS made by Allfix to a compatible format.
  15.      * Update Allfix (when registered) so that it will recognize the new
  16.        addition to your BBS, eliminating the need to run FCOMP.
  17.      * Update Allfix (when registered) with the description pulled from
  18.        FILEBONE.NA or FILEBONE.NO, eliminating the need to run FIXUTIL
  19.        Describe.
  20.      * Supports PCBoard 15.x, Renegade (4.17 or later), Maximus 3.0,
  21.        Telegard 3.0, T.A.G 2.7, Spitfire, LoraBBS 2.40, ProBoard, and
  22.        RemoteAccess 2.0x and 2.50.
  23.  
  24.    *** NOTICE: REQUIRES ALLFIX 4.32 OR ALLFIX/2 1.XX (REGISTERED) ***
  25.    Auto-adding file areas is a registered feature of Allfix.  I have no
  26.    control over this.
  27.  
  28.  
  29.   SETUP
  30.   -----
  31.     Put AUTOADD.EXE just about anywhere you want to, as long as you can
  32.   call it from a batch file.  
  33.  
  34.     AutoAdd requires certain switches and flags in Allfix to be setup up
  35.   in a compatible manner.  If you can not or are unwilling to make these
  36.   changes, then AutoAdd is not for you.
  37.  
  38.    Asetup switches that must be set:
  39.      In Asetup | Group Manager
  40.        All groups (that you expect to have areas added to) must have
  41.        Unique set to Yes.  File areas with Unique set to No will not be
  42.        added to you BBS.  Passthru areas are ignored.
  43.  
  44.    Because the setup is somewhat different for each BBS type, each
  45.  supported BBS type will be covered individually.
  46.  
  47.  
  48.   USING AUTOADD
  49.   -------------
  50.     AutoAdd is designed to be run from a batch file, but can be run
  51.   anytime.  AutoAdd has the capability to determine your BBS type.
  52.  
  53.     Edit your AUTOADD.CFG to suit your system.  AUTOADD.CFG *must*
  54.   reside in the same directory as AUTOADD.EXE.  A sample configuration
  55.   file is included for each BBS type supported.
  56.  
  57.     The call to AutoAdd is: <path>\AUTOADD
  58.  
  59.     AutoAdd will exit with an errorlevel of 1 if any file areas were
  60.   auto-added (if registered).  This may require editing for your
  61.   system.
  62.  
  63.  
  64.   THE BATCH FILE
  65.   --------------
  66.     The way I call AutoAdd:
  67.     (snipped from my MAINT.001 batch file)
  68.  
  69.     REM CHECK FOR TIC'S. RUN ALLFIX IF ANY
  70.     IF NOT EXIST D:\PCB\FIDO\INBOUND *.TIC GOTO PASSAF
  71.     D:
  72.     CD \ALLFIX
  73.     ALLFIX File -NoCrc
  74.     REM Run AUTOADD
  75.     D:\PCB\AUTOADD
  76.     IF NOT ERRORLEVEL 1 GOTO PASSAF
  77.     REM What ever you want here
  78.     REM This line is for PCBoard
  79.     MAKEIDX D:\PCB\GEN\INDEX1.PTH D:\PCB\GEN\INDEX1.IDX
  80.  
  81.     :PASSAFF
  82.     ALLFIX Announce
  83.  
  84.  
  85.   AUTOADD.CFG
  86.   -----------
  87.     AUTOADD.CFG serves two purposes.  It is used in conjunction with your
  88.   key file (once you get you key file), and to define the necessary
  89.   information AutoAdd needs to work with your particular setup.  A great
  90.   deal of flexibility can be used here.
  91.  
  92.     The first two lines contain the name you used to register AutoAdd
  93.   (case sensitive) and your registration code, in that order.  The
  94.   remaining lines are either comments or configuration options.  Please
  95.   see the explanation below for your BBS type.  A sample configuration
  96.   file (individually archived) is provided for each supported BBS type.
  97.   There can be NO blank lines, nor should any line begin with a space.
  98.  
  99.    - Comment lines.
  100.          There can be an unlimited number of comment lines (well, as long
  101.        as you have disk space).  Each comment line must have a semicolon
  102.        (;) as the first character on the line.  They are also limited to
  103.        250 total characters per line (include the semicolon).
  104.  
  105.    - Configuration lines.
  106.          Each configuration line consists of a 4 letter key and one or
  107.        more fields.  Each field is separated by one or more spaces.
  108.        Configuration lines my appear in any order.  Unless specified,
  109.        only one occurrence (the last one) of each line will be honored.
  110.        Configuration lines are also limited to 250 total characters.
  111.  
  112.     Configuration lines give you a great deal of flexibility in
  113.   defining what AutoAdd is to do and how it is to do it.  Some are
  114.   common for all BBS types, while others define the defaults you would
  115.   like for such things as security levels, passwords, directory paths,
  116.   etc.
  117.  
  118.    - Configuration lines common to all BBS types.
  119.  
  120.      Key   Description
  121.      ---   -----------
  122.      AFIX  This line has only one field, the path to your Allfix
  123.            directory.  If you use the %ALLFIX% environmental variable,
  124.            this line is optional.  It will override the path set with
  125.            %ALLFIX%.
  126.  
  127.      LOGG  This line has only one field, the path where you would like
  128.            AUTOADD.LOG written.  If not present, AUTOADD.LOG will be
  129.            stored in the same directory as AUTOADD.EXE.  If a filename
  130.            is specified, that file will be used.
  131.  
  132.    - Configuration lines specific to BBS types.
  133.  
  134.  
  135.      PCBOARD 15.x
  136.      ------------
  137.      Key   Description
  138.      ---   -----------
  139.      CNAM  This line has one field, the path and name you entered in
  140.            PCBSETUP->File Locations->System Files & Directories->Name/Loc
  141.            of Conference Data.  This is usually x:\PCB\MAIN\CNAMES, where
  142.            x is the drive letter.
  143.  
  144.      DIRP  This line has one field, the path you would like to store the
  145.            new DIRx style file in.  When an area is auto-added, Allfix
  146.            creates a FILES.BBS file in the same path the files are
  147.            stored in.  AutoAdd will always make a new file from the
  148.            FILES.BBS, naming it the same as the AreaTag for the new file
  149.            area and inserting the standard PCB DIRx header lines.  This
  150.            line will allow you to specify another directory to store the
  151.            DIRx file created by AutoAdd.  If not used, the new file will
  152.            be created in the same directory as the FILES.BBS file.
  153.  
  154.      CONF  This is the line that gives AutoAdd it's power.  There can be
  155.            up to 256 of these line.  The CONF line contains several
  156.            fields.  Each field must be present and in the correct order.
  157.  
  158.            - field 1: PCBoard conference (0 - 65567)
  159.                       This is the PCBoard conference you would like to
  160.                       be updated for an Allfix defined group.
  161.  
  162.            - field 2: group(s) (0 - 255) (79 characters max)
  163.                       AutoAdd allows you to assign a conference to each
  164.                       file echo group defined in Allfix.  This gives you
  165.                       the flexibility to specify which FILEBONE.NA style
  166.                       file goes with each file echo group and which
  167.                       PCBoard conference files (DIR.LST and DLPATH.LST)
  168.                       to update.
  169.  
  170.                       More than one group can be specified by separating each
  171.                       group by a semicolon (;).  Ex. 3;5;22
  172.  
  173.                       A range can be specified by separating the first and
  174.                       last group in the range by a dash (-). Ex. 23-255
  175.                       A combination can also be used. Ex 0;3-5;9-15
  176.  
  177.            - field 3: Path and name of the FILEBONE.NA style file to use
  178.                       for the group(s) defined in field 2.  The file
  179.                       defined here will be searched for the AreaTag of
  180.                       the newly added area.  The description for the
  181.                       auto-added area as defined in the FILEBONE.NA
  182.                       style file is then used to update file area
  183.                       descriptions in PCBoard and Allfix.
  184.  
  185.            - field 4: Path and name of the index.pth file to use.  This
  186.                       field allows you to define whether to update
  187.                       DLPATH.LST or a text file for use with MAKEIDX.
  188.                       Enter "NONE" (without quotes) not update anything.
  189.                       Leave blank to use the DLPATH.LST for the
  190.                       specified conference.
  191.  
  192.      FREQ  If this line is present, AutoAdd will add the new files path
  193.            your FREQPATH.DAT.  This line contains two fields.
  194.  
  195.            - field 1: Path and name of your FREQPATH.DAT. Usually
  196.            x:\PCB\MAIN\FREQPATH.DAT,  where x it the drive letter.
  197.  
  198.            - field 2: Password.  Optional. 10 characters max.
  199.  
  200.  
  201.      RENEGADE (versions later than 4.16)
  202.      -----------------------------------
  203.      Key   Description
  204.      ---   -----------
  205.      DATA  This line has one field, the path to where FBASES.DAT and
  206.            EXTENDED.DAT are stored.  This is usually x:\RENEGADE\DATA,
  207.            where x is the drive letter.
  208.  
  209.      FBON  This line has one field, the path and name of a FILEBONE.NA
  210.            style file.  There can be more than one FBON line.  Each will
  211.            be searched, in order, for the AreaTag of the auto-added file
  212.            area.  The description for the auto-added area as defined in
  213.            the FILEBONE.NA style file is then used to update file area
  214.            descriptions in Renegade and Allfix.
  215.  
  216.      DEFN  This line has multiple fields and contains the defaults for
  217.            the newly added file area.  This line is highly formatted. Use
  218.            care when you edit it.
  219.  
  220.            - field 1: The path to use as the upload directory.  Enter
  221.                       "SAME" (without quotes) if you wish it to be the
  222.                       same as the download path.  40 characters max
  223.                       (including trailing "\".  This is a Renegade
  224.                       limit).
  225.  
  226.            - field 2: Access, max files, archiver, and flags.  Each
  227.                       subfield is separated by a comma.  All subfields
  228.                       must be present.  If a subfield is not used, the
  229.                       comma must still be used as a place holder.
  230.  
  231.             - subfield 1: Password.  12 characters max.
  232.  
  233.             - subfield 2: Access (ACS).  20 characters max.
  234.  
  235.             - subfield 3: Upload access (ULACS).  20 characters max.
  236.  
  237.             - subfield 4: Download access (DLACS).  20 characters max.
  238.  
  239.             - subfield 5: Maximum files allowed in this area. 1-65635.
  240.  
  241.             - subfield 6: Archiver.  0 thru number of archivers defined in
  242.                           Renegade.  Warning: validity of this field is
  243.                           not checked.  8 is the highest value Renegade
  244.                           allows.  0 = None defined.
  245.  
  246.             - subfield 7: Archive Comment.  1 - 3 as setup in Renegade.
  247.  
  248.             - subfield 8: Credits required for download for each file.
  249.                           This will be used in the new *.DIR file.
  250.  
  251.             - subfield 9: Flags: C - CD-ROM
  252.                                  G - Gif Specs
  253.                                  D - Date Uploaded
  254.                                  S - Show Uploader Name
  255.                                  I - *.DIR in DLPATH
  256.                                  U - Unhidden
  257.                                  N - No Ratio
  258.                           The I flag is honored by AutoAdd.
  259.  
  260.  
  261.      MAXIMUS 3.X
  262.      -----------
  263.      Key   Description
  264.      ---   -----------
  265.      DATA  This line has one field, the path to MAX.PRM.  This is
  266.            usually x:\MAX\, where x is the drive letter.
  267.  
  268.      FBON  This line has one field, the path and name of a FILEBONE.NA
  269.            style file.  There can be more than on FBON line.  Each file
  270.            will be searched, in order, for the AreaTag of the auto-added
  271.            file area.  The description for the auto-added area as
  272.            defined in the FILEBONE.NA style file is then used to update
  273.            file area descriptions in Maximus and Allfix.
  274.  
  275.      DEFN  This line has two fields, the default upload path and access
  276.            name.
  277.  
  278.            - field 1: The path to use as the upload directory.  No check
  279.                       is made for the validity of the path.
  280.  
  281.            - field 2: Access name (level) for this file area.  Enter the
  282.                       <name> for the access level as defined in
  283.                       ACCESS.CTL (Sysop, Demoted, etc).
  284.  
  285.  
  286.      TELEGARD 3.0
  287.      ------------
  288.      Key   Description
  289.      ---   -----------
  290.      DATA  This line has one field, the path to CONFIG.TG.  This is
  291.            usually x:\TELEGARD\, where x is the drive letter.
  292.  
  293.      FBON  This line has one field, the path and name of a FILEBONE.NA
  294.            style file.  There can be more than on FBON line.  Each file
  295.            will be searched, in order, for the AreaTag of the auto-added
  296.            file area.  The description for the auto-added area as
  297.            defined in the FILEBONE.NA style file is then used to update
  298.            file area descriptions in Telegard and Allfix.
  299.  
  300.      DEFN  This line has one field, but many subfields.  It contains
  301.            the defaults to use when defining the new file area in
  302.            Telegard.
  303.  
  304.           - field 1: Archiver, accesses, flags.  Each subfield is
  305.             separated by a comma.  Even if a subfield is not used, the
  306.             comma must be present as a place holder.
  307.  
  308.             - subfield 1: Archiver (ZIP, ARJ, ARC, ZOO, etc).
  309.  
  310.             - subfield 2: Sysop access.
  311.  
  312.             - subfield 3: Access required to view the file list.
  313.  
  314.             - subfield 4: Access required to see Uploader name.
  315.  
  316.             - subfield 5: Access required to upload files.
  317.  
  318.             - subfield 6: Access required to download files.
  319.  
  320.             - subfield 7: Scan type - 0 - default on
  321.                                       1 - default off
  322.                                       2 - always.
  323.  
  324.             - subfield 8: Flags - N - Noratio
  325.                                   V - Visible
  326.                                   G - GifSpecs
  327.  
  328.  
  329.      SPITFIRE
  330.      --------
  331.      Key   Description
  332.      ---   -----------
  333.      DATA  This line has one field, the path to SFFAREA.DAT.  This is
  334.            usually x:\SPITFIRE\, where x is the drive letter.
  335.  
  336.      FBON  This line has one field, the path and name of a FILEBONE.NA
  337.            style file.  There can be more than on FBON line.  Each file
  338.            will be searched, in order, for the AreaTag of the auto-added
  339.            file area.  The description for the auto-added area as
  340.            defined in the FILEBONE.NA style file is then used to update
  341.            file area descriptions in Spitfire and Allfix.
  342.  
  343.      DEFN  This has three fields.  The first two fields must be present,
  344.            while the last field my be left blank to use the defaults.
  345.  
  346.           - field 1: Upload path.  If you would like the upload path and
  347.                      download path to be the same, enter "SAME" (without
  348.                      the quotes).  Maximum of 60 characters, including
  349.                      the trailing "\".
  350.  
  351.           - field 2: File area access level. 0 - 255.
  352.  
  353.           - field 3: File area flags - E - User must have security level
  354.                                            equal to file area security
  355.                                            to upload or download.
  356.                                            Default is Equal to or
  357.                                            greater than.
  358.                                        S - Allow users with less
  359.                                            security to view files list.
  360.                                            Default is not to allow
  361.                                            viewing of the files list.
  362.  
  363.  
  364.      PROBOARD
  365.      --------
  366.      Key   Description
  367.      ---   -----------
  368.      DATA  This line has one field, the path to FILECFG.PRO.  This is
  369.            usually x:\PB\, where x is the drive letter.
  370.  
  371.      FBON  This line has one field, the path and name of a FILEBONE.NA
  372.            style file.  There can be more than on FBON line.  Each file
  373.            will be searched, in order, for the AreaTag of the auto-added
  374.            file area.  The description for the auto-added area as
  375.            defined in the FILEBONE.NA style file is then used to update
  376.            file area descriptions in ProBoard and Allfix.
  377.  
  378.      DEFN  This line has several fields, each seperated by a comma.  You
  379.            may define the defaults to use for the new file area here.
  380.  
  381.          - field 1: File area security level
  382.  
  383.          - field 2: File area access flags (A thru Z, 1 thru 6). Order
  384.                     does not matter nor does case.  You can make neat
  385.                     words here, like AutoAdd115.  In this case flags
  386.                     ADOTU15 would be set.
  387.          - field 3: Maximum files allowed to DL.
  388.  
  389.          - field 4: Maximum kilobytes allowed to DL.
  390.  
  391.          - field 5: Do NOT show in TOPS.PB.  T, true, True, TRUE all mean
  392.                     "No. Do not show in TOPS.PB".  Only the first letter
  393.                     is checked.
  394.  
  395.          - field 6: Free files. True or False (T or F). Same method as
  396.                     field 5.  Only the first letter is checked.
  397.  
  398.          - field 7: Minimum age. 0 - 1000.  Well, actually the range is
  399.                     much greater, but I think the average life span is
  400.                     well covered.
  401.  
  402.          - field 8: Date format. 0 - MM/DD/YY
  403.                                  1 - DD/MM/YY
  404.                                  2 - YY/MM/DD
  405.  
  406.          - field 9: Groups this area belongs to.  "*" = All groups.
  407.                     Otherwise, up to 4 groups may be listed, seperated by
  408.                     a comma.
  409.  
  410.  
  411.      TAG 2.7
  412.      -------
  413.      Key   Description
  414.      ---   -----------
  415.      DATA  This line has one field, the path to FBOARDS.DAT.  This is
  416.            usually x:\TAG\DFILES\, where x is the drive letter.
  417.  
  418.      FBON  This line has one field, the path and name of a FILEBONE.NA
  419.            style file.  There can be more than on FBON line.  Each file
  420.            will be searched, in order, for the AreaTag of the auto-added
  421.            file area.  The description for the auto-added area as
  422.            defined in the FILEBONE.NA style file is then used to update
  423.            file area descriptions in TAG and Allfix.
  424.  
  425.      DEFN  This line has several fields, each seperated by a comma.  You
  426.            may define the defaults to use for the new file area here.
  427.  
  428.           - field 1: Password. 15 characters max.
  429.  
  430.           - field 2: Access. 0 - 255.
  431.  
  432.           - field 3: Access level to see Uploader name. 0-255.
  433.  
  434.           - field 4: No Ratio flag. "True" or "T" for "Yes, no ratio.",
  435.                      or  "False" or "F" for "No, ratio active."
  436.  
  437.           - field 5: Group this file area belongs to. 0-127.
  438.  
  439.           - field 6: AR flag. @..Z. Only one flag allowed.
  440.  
  441.           - field 7: Use "FILES" as the filename for the files list.
  442.                      "True" or "T", "False" of "F".  Defaults to "False.
  443.                      Do not use FILES as the filename for the files
  444.                      list."
  445.  
  446.            All fields must be seperated by a comma.  All fields must be
  447.            present.  This means that even if a field is not used, a comma
  448.            must be used as a place holder.
  449.  
  450.  
  451.      LORABBS 2.40
  452.      ------------
  453.      Key   Description
  454.      ---   -----------
  455.      DATA  This line has one field, the path to SYSFILE.DAT.  This is
  456.            usually x:\LORA\, where x is the drive letter.
  457.  
  458.      FBON  This line has one field, the path and name of a FILEBONE.NA
  459.            style file.  There can be more than on FBON line.  Each file
  460.            will be searched, in order, for the AreaTag of the auto-added
  461.            file area.  The description for the auto-added area as
  462.            defined in the FILEBONE.NA style file is then used to update
  463.            file area descriptions in LoraBBS and Allfix.
  464.  
  465.      DEFN  This line has several fields, each seperated by a comma.  You
  466.            may define the defaults to use for the new file area here.
  467.  
  468.           - field 1: Minimum area number.  This is the lowest area
  469.                      number AutoAdd will use when adding new file areas.
  470.                      The new area number will always be the highest in
  471.                      the file area database.
  472.  
  473.           - field 2: Upload path.  This is a required field.
  474.  
  475.           - field 3: Free files area, True (T) or False (F).
  476.  
  477.           - field 4: Exclude this area from global searchs, True or
  478.                      False.
  479.  
  480.           - field 5: Minimum level required for this area. 1 - Twit,
  481.                                                            2 - Disgrace,
  482.                                                            3 - Limited,
  483.                                                            ...,
  484.                                                           13 - Hidden
  485.  
  486.           - field 6: Access flags. 0-9 and A-V.  Order does not matter.
  487.  
  488.           - field 7: File area access level. 1 - Twit.....
  489.  
  490.           - field 8: File area flags. 0-9 and A-V.
  491.  
  492.           - field 9: Download access. 1 - Twit.....
  493.  
  494.           - field 10: Download flags. 0-9 and A-V.
  495.  
  496.           - field 11: Upload access. 1 - Twit....
  497.  
  498.           - field 12: Upload flags. 0-9 and A-V.
  499.  
  500.           All fields must be seperated by a comma.  All fields must be
  501.         present.  This means that even if a field is not used, a comma
  502.         must be used as a place holder.  Fields 5 - 12 are optional.
  503.         They will all default to Twit privilages and no flags.  No
  504.         fields may be skipped.  If not used or you desire the default,
  505.         you must use a comma as a place holder for fields preceding the
  506.         field you do use.
  507.  
  508.  
  509.      REMOTEACCESS 2.0x and 2.50
  510.      --------------------------
  511.      Key   Description
  512.      ---   -----------
  513.      DATA  This line has one field, the path to FILES.RA.  This is
  514.            usually x:\RA\, where x is the drive letter.
  515.  
  516.      FBON  This line has one field, the path and name of a FILEBONE.NA
  517.            style file.  There can be more than on FBON line.  Each file
  518.            will be searched, in order, for the AreaTag of the auto-added
  519.            file area.  The description for the auto-added area as
  520.            defined in the FILEBONE.NA style file is then used to update
  521.            file area descriptions in RemoteAccess and Allfix.
  522.  
  523.      DEF1  New file area defaults.  All fields must be present.
  524.  
  525.           - field  1: Kill files after x days if no DL.
  526.  
  527.           - field  2: Kill files after x days from file date.
  528.  
  529.           - field  3: Password for this file area.
  530.  
  531.           - field  4: Minimum age for access to this area.
  532.  
  533.           - field  5: Convert all files to this extention (ZIP, ARJ, etc).
  534.  
  535.           - field  6: Default Cost.
  536.  
  537.           - field  7: Upload Area (not check for validty). Defaults to
  538.                       same as the new area.
  539.  
  540.           - field  8: Group this area should be in.  Enter ALLFIX to
  541.                       use the Allfix Group number plus 1.
  542.  
  543.           - field  9: Include this area in file scans (Yes or No).
  544.  
  545.           - field 10: Include this area in dupe checks (Yes or No).
  546.  
  547.           - field 11: Allow long descriptions (Yes or No).
  548.  
  549.           - field 12: Free area (Yes or No).
  550.  
  551.           - field 13: Allow files Not in FDB to be downloaded (Yes or No).
  552.  
  553.           - field 14: Allow users to assign file password to files (Yes
  554.                       or No).
  555.  
  556.           - field 15: Scan this area for new ULs (Yes or No).
  557.  
  558.           - field 16: Include this area is in all Groups (Yes or No).
  559.  
  560.           - field 17: Alt Group 1.
  561.  
  562.           - field 18: Alt Group 2.
  563.  
  564.           - field 19: Alt Group 3.
  565.  
  566.           - field 20: Delete FILES.BBS after processing. (T)rue or
  567.                       (F)alse.  Defaults to False.  Use this with
  568.                       caution.  It's hard to recover file descriptions
  569.                       if something should go wrong.
  570.  
  571.           All fields must be seperated by a comma.  All fields must be
  572.         present.  This means that even if a field is not used, a comma
  573.         must be used as a place holder.
  574.  
  575.      DEF2  New file area Security levels and flags.
  576.  
  577.           - field  1: Upload Security Level.
  578.  
  579.           - field  2: Upload FlagsA.  - = Don't care
  580.                                       X = Flag must be set
  581.                                       O = (letter) Flag must NOT be set
  582.  
  583.           - field  3: Upload FlagsB.
  584.  
  585.           - field  4: Upload FlagsC.
  586.  
  587.           - field  5: Upload FlagsD.
  588.  
  589.           - field  6: Download Security Level.
  590.  
  591.           - field  7: Download FlagsA.
  592.  
  593.           - field  8: Download FlagsB.
  594.  
  595.           - field  9: Download FlagsC.
  596.  
  597.           - field 10: Download FlagsD.
  598.  
  599.           - field 11: List files Secutity Level.
  600.  
  601.           - field 12: List FlagsA.
  602.  
  603.           - field 13: List FlagsB.
  604.  
  605.           - field 14: List FlagsC.
  606.  
  607.           - field 15: List FlagsD.
  608.  
  609.           All fields must be seperated by a comma.  All fields must be
  610.         present.  This means that even if a field is not used, a comma
  611.         must be used as a place holder.
  612.  
  613.  
  614.   REGISTRATION
  615.   ------------
  616.     Registration is $5.00 (US).  Registration will enable the updating of
  617.   Allfix.  See AUTOADD.REG for further information.
  618.  
  619.  
  620.   EVALUATION KEY
  621.   --------------
  622.     A 30 day evaluation key can be obtained by calling the support BBS
  623.   (The Spy's Nest, see below), logging on with the name and password of
  624.   AUTOADD.  After logging on, you should be in Conference 4.  Type EVAL
  625.   and follow the on-screen instructions.
  626.  
  627.  
  628.   CONTACTING THE AUTHOR
  629.   ---------------------
  630.     I can be reached at:
  631.          The Spy's Nest 1-904-458-0982/1-904-457-9111 (V.34/VFC)
  632.          FIDO 1:3612/386 (or 1:3612/386.1)
  633.     I also hang out in ALLFIX_HELP and supported BBS type support echos.
  634.  
  635.  
  636.   WARRANTY & DISCLAIMER
  637.   ---------------------
  638.     There are no warranties, express or implied, for unregistered copies
  639.   of AutoAdd.  The author will NOT be held liable for any direct,
  640.   indirect, incidental, or consequential damage resulting from the use
  641.   of this program.  Your use of this program constitutes your AGREEMENT
  642.   to this disclaimer and your release of the author from any form of
  643.   liability.
  644.  
  645.     Registered copies of AutoAdd are warranted to perform as described
  646.   in this documentation.  In the event AutoAdd does not perform as
  647.   described, then the author will elect to either rectify the problem or
  648.   refund the amount of the registration paid, provided notification is
  649.   received within 30 days of registration.
  650.  
  651.     All brand and product names are Copyrighted (C) material, Trademarks
  652.   (tm) or Registered (R) Trademarks of their respective holders:
  653.   Allfix                        Harald Harmes
  654.   PCBoard                       Clark Development Co.
  655.   Renegade                      Cott Lang
  656.   Maximus                       Lanius Corporation
  657.   Telegard                      Tim Strike
  658.   SpitFire                      Buffalo Creek Software
  659.   ProBoard                      Philippe Leybaert
  660.   LoraBBS                       Marco Maccaferri
  661.   RemoteAccess                  Wantree Development & Andrew Milner
  662.   T.A.G.                        The T.A.G Team
  663.